between

Returns the content that is between left and right:

string test = `string containing a "thing"`;
writeln(test.between(`"`, `"`)); //thing
pure nothrow @nogc @safe
inout(TString)
between
(
TString
)
(
inout TString str
,
inout TString left
,
inout TString right
,
int start = 0
)

Meta